<table>
基本的な表
code:html
<table>
<caption>caption</caption>
<thead>
<tr>
<th>header</th>
<th>content</th>
</tr>
</thead>
<tbody>
<tr>
<th>header</th>
<td>content</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>header</th>
<th>content</th>
</tr>
</tfoot>
</table>